home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / getegid.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  178 b   |  10 lines

  1. #include "lib.h"
  2.  
  3. PUBLIC gid_t getegid()
  4. {
  5.   int k;
  6.   k = callm1(MM, GETGID, 0, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
  7.   if (k < 0) return ( (gid_t) k);
  8.   return( (gid_t) M.m2_i1);
  9. }
  10.